-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update gradle version #382
Conversation
The Docker Hub publishing workflow has been removed as it is no longer needed. This commit removes the action.yml file and related code for publishing to Docker Hub. Closes #123
- fix deprecation Jwts
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #382 +/- ##
==========================================
+ Coverage 91.50% 92.05% +0.54%
==========================================
Files 361 360 -1
Lines 4193 4168 -25
Branches 377 372 -5
==========================================
Hits 3837 3837
+ Misses 222 197 -25
Partials 134 134 ☔ View full report in Codecov by Sentry. |
…s in backend and frontend actions
Job Summary for GradleCommit Stage 🤖 :: code-coverage
|
…ies in backend and frontend actions
- join build, test and code coverage in the same job
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
Update Gradle version v8.10.2 Gradle releases
This pull request involves significant changes to the Docker packaging and publishing workflows, splitting them into separate workflows for the backend and frontend applications. Additionally, it introduces new Docker build and deployment configurations for both the backend and frontend. The most important changes include splitting the workflows, creating new action files, and updating the
Dockerfile
and Gradle build scripts.Workflow Changes:
.github/workflows/deploy-main-stage.yml
: Split the existingpackage
job intopackage-backend
andpackage-frontend
jobs to handle backend and frontend applications separately..github/workflows/dev-commit-stage.yml
: Similarly split thepackage
job intopackage-backend
andpackage-frontend
jobs for the development commit stage. [1] [2]New Action Files:
.github/actions/docker/backend/action.yml
: Created a new action file to handle packaging and publishing of the backend application..github/actions/docker/frontend/action.yml
: Created a new action file to handle packaging and publishing of the frontend application.Docker Configuration:
Dockerfile
: Updated to include separate build stages for the frontend applications (lyra-app and lyra-landing-page) and added labels for metadata. Introduced non-root user for security and cleaned up unnecessary files.Gradle Build Script:
apps/backend/backend.gradle.kts
: Updated thebootBuildImage
task to include new cache volume names and image tags for Docker Hub and GHCR.Removed Obsolete Action Files:
.github/actions/docker/action.yml
: Removed the old composite action file that handled both backend and frontend packaging and publishing..github/actions/docker/dockerhub/action.yml
: Removed the old Docker Hub-specific action file..github/actions/docker/ghcr/action.yml
: Removed the old GHCR-specific action file.